home *** CD-ROM | disk | FTP | other *** search
/ W95 Shareware Collection / W95 Collection - Windows 95 Shareware (LCDCAN).iso / win95 / utils / chief200 / sysini.chf < prev    next >
Text File  |  1995-09-15  |  1KB  |  36 lines

  1. REM --- Sample BATCH FILE for multiple DEVICE lines in SYSTEM.INI
  2. REM --- NOTE: this only works with DEVICE lines in the [386enh] section
  3. REM ---       of the SYSTEM.INI file. Do not try it elsewhere!
  4. REM --- First copy your SYSTEM.INI file to the TEMP directory
  5. REM --- The "##" on the first "WRITEINI" line generates a comment 
  6. REM --- in the INI file
  7.  
  8. REM --- first make a copy of the SYSTEM.INI file to work on
  9. REM --- do NOT work on the original of your SYSTEM.INI
  10. COPY $WINDIR\SYSTEM.INI $TEMPDIR
  11.  
  12. REM --- check if copy operation succeeded
  13. IF ERRORCODE 0 GOTO CONTINUE
  14.  
  15. REM --- if we get here the copy operation failed
  16. SAY I could not copy the file!
  17. EXIT
  18.  
  19.  
  20. :CONTINUE
  21. WRITEINI $TEMPDIR\SYSTEM.INI;386enh;device;Chief1.386   ## entry made by Chief Pro 2.0
  22. IF NOT-ERRORCODE 0 SAY I could not write the entry
  23.  
  24. WRITEINI $TEMPDIR\SYSTEM.INI;386enh;device;Chief2.386
  25. IF NOT-ERRORCODE 0 SAY I could not write the entry
  26.  
  27. WRITEINI $TEMPDIR\SYSTEM.INI;386enh;device;Chief3.386
  28. IF NOT-ERRORCODE 0 SAY I could not write the entry
  29.  
  30. WRITEINI $TEMPDIR\SYSTEM.INI;386enh;device;Chief4.386
  31.  
  32. WRITEINI $TEMPDIR\SYSTEM.INI;386enh;device;Chief5.386
  33.  
  34. EXIT
  35.  
  36.